| Server IP : 43.153.74.48 / Your IP : 216.73.216.28 Web Server : LiteSpeed System : Linux VM-0-13-ubuntu 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www ( 1002) PHP Version : 8.1.29 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/stainlesstint.com/wp-content/themes/woodmart/inc/shortcodes/ |
Upload File : |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
exit( 'No direct script access allowed' );}
/**
* ------------------------------------------------------------------------------------------------
* Pricing tables shortcodes
* ------------------------------------------------------------------------------------------------
*/
if ( ! function_exists( 'woodmart_shortcode_pricing_tables' ) ) {
function woodmart_shortcode_pricing_tables( $atts = array(), $content = null ) {
$output = $class = $autoplay = '';
extract(
shortcode_atts(
array(
'el_class' => '',
),
$atts
)
);
$class .= ' ' . $el_class;
ob_start();
woodmart_enqueue_inline_style( 'pricing-table' );
?>
<div class="pricing-tables-wrapper">
<div class="pricing-tables<?php echo esc_attr( $class ); ?>" >
<?php echo do_shortcode( $content ); ?>
</div>
</div>
<?php
$output = ob_get_contents();
ob_end_clean();
return $output;
}
}
if ( ! function_exists( 'woodmart_shortcode_pricing_plan' ) ) {
function woodmart_shortcode_pricing_plan( $atts, $content ) {
global $wpdb, $post;
if ( ! function_exists( 'wpb_getImageBySize' ) ) {
return;
}
$output = $class = $bg_style = '';
extract(
shortcode_atts(
array(
'name' => '',
'price_value' => '',
'price_suffix' => 'per month',
'currency' => '',
'features_list' => '',
'label' => '',
'label_color' => 'red',
'link' => '',
'button_label' => '',
'button_type' => 'custom',
'id' => '',
'style' => 'default',
'best_option' => '',
'with_bg_image' => '',
'bg_image' => '',
'css_animation' => 'none',
'el_class' => '',
),
$atts
)
);
$class .= ' ' . $el_class;
$class .= woodmart_get_css_animation( $css_animation );
if ( ! empty( $label ) ) {
$class .= ' price-with-label label-color-' . $label_color;
}
if ( $best_option == 'yes' ) {
$class .= ' price-highlighted';
}
$class .= ' price-style-' . $style;
if ( $with_bg_image == 'yes' && $bg_image ) {
$class .= ' with-bg-image';
$image = woodmart_get_image_src( $bg_image, 'full' );
$bg_style = 'background-image:url(' . esc_url( $image ) . ')';
}
$features_list = str_replace( '<br />', PHP_EOL, $features_list );
$features_list = str_replace( PHP_EOL . PHP_EOL, PHP_EOL, $features_list );
$features = explode( PHP_EOL, $features_list );
$product = false;
if ( $button_type == 'product' && ! empty( $id ) && function_exists( 'wc_setup_product_data' ) ) {
$product_data = get_post( $id );
$product = is_object( $product_data ) && in_array( $product_data->post_type, array( 'product', 'product_variation' ) ) ? wc_setup_product_data( $product_data ) : false;
}
ob_start();
?>
<div class="wd-price-table<?php echo esc_attr( $class ); ?>" >
<div class="wd-plan">
<div class="wd-plan-name">
<span class="wd-plan-title title"><?php echo wp_kses( $name, woodmart_get_allowed_html() ); ?></span>
</div>
</div>
<div class="wd-plan-inner">
<?php if ( ! empty( $label ) ) : ?>
<div class="price-label"><span><?php echo wp_kses( $label, woodmart_get_allowed_html() ); ?></span></div>
<?php endif ?>
<div class="wd-plan-price" style="<?php echo esc_attr( $bg_style ); ?>">
<?php if ( $currency ) : ?>
<span class="wd-price-currency">
<?php echo wp_kses( $currency, woodmart_get_allowed_html() ); ?>
</span>
<?php endif ?>
<?php if ( $price_value != '' ) : ?>
<span class="wd-price-value">
<?php echo wp_kses( $price_value, woodmart_get_allowed_html() ); ?>
</span>
<?php endif ?>
<?php if ( $price_suffix ) : ?>
<span class="wd-price-suffix">
<?php echo wp_kses( $price_suffix, woodmart_get_allowed_html() ); ?>
</span>
<?php endif ?>
</div>
<?php if ( ! empty( $features[0] ) ) : ?>
<div class="wd-plan-features">
<?php foreach ( $features as $value ) : ?>
<div class="wd-plan-feature">
<?php echo wp_kses( $value, woodmart_get_allowed_html() ); ?>
</div>
<?php endforeach; ?>
</div>
<?php endif ?>
<div class="wd-plan-footer">
<?php if ( $button_type == 'product' && $product ) : ?>
<?php
if ( 'nothing' !== woodmart_get_opt( 'add_to_cart_action' ) ) {
woodmart_enqueue_js_script( 'action-after-add-to-cart' );
}
if ( 'popup' === woodmart_get_opt( 'add_to_cart_action' ) ) {
woodmart_enqueue_js_library( 'magnific' );
woodmart_enqueue_inline_style( 'add-to-cart-popup' );
woodmart_enqueue_inline_style( 'mfp-popup' );
}
woocommerce_template_loop_add_to_cart();
?>
<?php else : ?>
<?php if ( $button_label ) : ?>
<a <?php echo woodmart_get_link_attributes( $link ); ?> class="button price-plan-btn">
<?php echo wp_kses( $button_label, woodmart_get_allowed_html() ); ?>
</a>
<?php endif ?>
<?php endif ?>
</div>
</div>
</div>
<?php
$output = ob_get_contents();
ob_end_clean();
if ( $button_type == 'product' && function_exists( 'wc_setup_product_data' ) ) {
// Restore Product global in case this is shown inside a product post
wc_setup_product_data( $post );
}
return $output;
}
}